home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / mint / duftp / globals.c < prev    next >
C/C++ Source or Header  |  1995-06-12  |  841b  |  25 lines

  1. /*
  2.     DUFTP
  3. */
  4.  
  5. // Global Variables
  6.  
  7. #include <DULIB.H>
  8. #include <SETJMP.H>
  9. #include "globals.h"
  10. #include "ls2filel.h"
  11.  
  12. char *initial_dir;
  13. jmp_buf recover_main;
  14. file_list *remote_directory;
  15. file_list *local_directory;
  16. char **remote_files;                // Array of just the filenames of the remote files
  17. char **local_files;                    // Array of just the filenames of the local files
  18. short file_count;                    // How many files are there in the remote list?
  19. char current_local_path[FMSIZE];    // Where we are in the local filesystem
  20. short local_file_count;                // Number of entries in the local filesystem
  21. char new_server_address[50];        // Address for a new server
  22. char new_server_login[50];            // Login for a new server
  23. char new_server_password[50];        // Password for a new server
  24. char new_server_path[FMSIZE];        // Initial path for a new server
  25.